15224fc1a44d06861b45170bb863ea8030844772,src/test/java/org/openqa/selenium/ReferrerTest.java,ReferrerTest,readPages,#,109

Before Change


  public static void readPages() throws IOException {
    page1 = Files.toString(locate("web/proxy/page1.html"), Charsets.UTF_8);
    page2 = Files.toString(locate("web/proxy/page2.html"), Charsets.UTF_8);
    page3 = Files.toString(locate("web/proxy/page3.html"), Charsets.UTF_8);
  }

  /**

After Change


  public static void readPages() throws IOException {
    page1 = new String(Files.readAllBytes(locate("web/proxy/page1.html")), UTF_8);
    page2 = new String(Files.readAllBytes(locate("web/proxy/page2.html")), UTF_8);
    page3 = new String(Files.readAllBytes(locate("web/proxy/page3.html")), UTF_8);
  }

  /**